MirrorConfig.fromJson constructor

MirrorConfig.fromJson(
  1. Map json_
)

Implementation

MirrorConfig.fromJson(core.Map json_)
    : this(
        deployKeyId: json_.containsKey('deployKeyId')
            ? json_['deployKeyId'] as core.String
            : null,
        url: json_.containsKey('url') ? json_['url'] as core.String : null,
        webhookId: json_.containsKey('webhookId')
            ? json_['webhookId'] as core.String
            : null,
      );