electric_query_response.dart 354 B

1234567891011121314
  1. import 'package:json_annotation/json_annotation.dart';
  2. part 'electric_query_response.g.dart';
  3. @JsonSerializable()
  4. class ElectricQueryResponse {
  5. @JsonKey(name: "electric")
  6. int? electric;
  7. ElectricQueryResponse({this.electric});
  8. factory ElectricQueryResponse.fromJson(Map<String, dynamic> json) =>
  9. _$ElectricQueryResponseFromJson(json);
  10. }