Application.fromJson constructor

Application.fromJson(
  1. Map json_
)

Implementation

Application.fromJson(core.Map json_)
  : this(
      clientId: json_['clientId'] as core.String?,
      name: json_['name'] as core.String?,
    );