From 8c5a4a0e98df629d7c049b98647cfe18d528a2e8 Mon Sep 17 00:00:00 2001 From: ahmed Date: Fri, 21 Feb 2025 20:41:18 +0300 Subject: [PATCH] uint order --- lib/src/Data/RepresentationType.dart | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/lib/src/Data/RepresentationType.dart b/lib/src/Data/RepresentationType.dart index b3462c6..e7df64f 100644 --- a/lib/src/Data/RepresentationType.dart +++ b/lib/src/Data/RepresentationType.dart @@ -18,17 +18,17 @@ class RepresentationTypeIdentifier { UInt8 = 0x3, Int8 = 0x4, Char = 0x5, - Int16 = 0x6, - UInt16 = 0x7, - Int32 = 0x8, - UInt32 = 0x9, + UInt16 = 0x6, + Int16 = 0x7, + UInt32 = 0x8, + Int32 = 0x9, Float32 = 0xA, - Int64 = 0xB, - UInt64 = 0xC, + UInt64 = 0xB, + Int64 = 0xC, Float64 = 0xD, DateTime = 0xE, - Int128 = 0xF, - UInt128 = 0x10, + UInt128 = 0xF, + Int128 = 0x10, Decimal = 0x11, String = 0x12, RawData = 0x13,