Application.fromJson constructor

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

Implementation

factory Application.fromJson(Map<String, Object?> json) {
  return Application(
    name: json[r'name'] as String?,
    type: json[r'type'] as String?,
  );
}