ExtrasResultCodes.fromJson constructor

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

Implementation

factory ExtrasResultCodes.fromJson(Map<String, dynamic> json) =>
    ExtrasResultCodes(
      json['transaction'],
      json['operations'] != null
          ? List<String>.from(json['operations'].map((e) => e))
          : null,
    );