TransactionContentResponse.fromJson constructor Null safety

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

Implementation

factory TransactionContentResponse.fromJson(Map<String, dynamic> json) =>
    TransactionContentResponse(
      data: TransactionContentResponseData.fromJson(json['data']),
    );