EnrollExistingApp.fromJson constructor

EnrollExistingApp.fromJson(
  1. Map json_
)

Implementation

EnrollExistingApp.fromJson(core.Map json_)
  : this(
      cloudKmsKey: json_.containsKey('cloudKmsKey')
          ? CloudKmsKey.fromJson(
              json_['cloudKmsKey'] as core.Map<core.String, core.dynamic>,
            )
          : null,
    );