fromJson static method

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

Implementation

static Application fromJson(Map<String, dynamic> json) {
  return new Application(
      id: json['id'] as int,
      title: json['title'] as String,
      logo: json['logo'] as String,

  );
}