IdentityServiceGoogleConfig.fromJson constructor

IdentityServiceGoogleConfig.fromJson(
  1. Map json_
)

Implementation

IdentityServiceGoogleConfig.fromJson(core.Map json_)
    : this(
        disable: json_.containsKey('disable')
            ? json_['disable'] as core.bool
            : null,
      );