Other.fromJson constructor

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

Implementation

factory Other.fromJson(Map<String, dynamic> json) => Other(
      data: json["data"],
      index: json["index"],
    );