ExtratoDas.fromJson constructor

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

Implementation

factory ExtratoDas.fromJson(Map<String, dynamic> json) {
  return ExtratoDas(
    numeroDas: json['numeroDas'].toString(),
    extrato: Extrato.fromJson(json['extrato']),
  );
}