DeleteFeatureValuesResponse_SelectEntity.fromJson constructor

DeleteFeatureValuesResponse_SelectEntity.fromJson(
  1. Object? j
)

Implementation

factory DeleteFeatureValuesResponse_SelectEntity.fromJson(Object? j) {
  final json = j as Map<String, Object?>;
  return DeleteFeatureValuesResponse_SelectEntity(
    offlineStorageDeletedEntityRowCount:
        switch (json['offlineStorageDeletedEntityRowCount']) {
          null => 0,
          Object $1 => decodeInt64($1),
        },
    onlineStorageDeletedEntityCount:
        switch (json['onlineStorageDeletedEntityCount']) {
          null => 0,
          Object $1 => decodeInt64($1),
        },
  );
}