DeleteFeatureValuesResponse_SelectEntity.fromJson constructor
Implementation
factory DeleteFeatureValuesResponse_SelectEntity.fromJson(
Map<String, dynamic> json,
) {
return DeleteFeatureValuesResponse_SelectEntity(
offlineStorageDeletedEntityRowCount:
decodeInt64(json['offlineStorageDeletedEntityRowCount']) ?? 0,
onlineStorageDeletedEntityCount:
decodeInt64(json['onlineStorageDeletedEntityCount']) ?? 0,
);
}