CustomInfo.fromJson constructor

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

Implementation

factory CustomInfo.fromJson(Map<String, dynamic>? json) => CustomInfo(
      status: json?["status"],
      data: json?["data"],
    );