toMap method

Map<String, Object?> toMap()

Implementation

Map<String, Object?> toMap() {
  return {
    'clientReference': _clientReference,
    'handle': handle.isEmpty ? null : handle,
    'uuid': uuid.uuidString,
    'value': value,
  };
}