Installation.fromJson constructor

Installation.fromJson(
  1. Map json_
)

Implementation

Installation.fromJson(core.Map json_)
    : this(
        id: json_['id'] as core.String?,
        name: json_['name'] as core.String?,
        type: json_['type'] as core.String?,
      );