DeleteFeatureValuesResponse_SelectEntity.fromJson constructor

DeleteFeatureValuesResponse_SelectEntity.fromJson(
  1. Map<String, dynamic> json
)

Implementation

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