ServiceAttachmentConsumerProjectLimit.fromJson constructor

ServiceAttachmentConsumerProjectLimit.fromJson(
  1. Map json_
)

Implementation

ServiceAttachmentConsumerProjectLimit.fromJson(core.Map json_)
    : this(
        connectionLimit: json_.containsKey('connectionLimit')
            ? json_['connectionLimit'] as core.int
            : null,
        networkUrl: json_.containsKey('networkUrl')
            ? json_['networkUrl'] as core.String
            : null,
        projectIdOrNum: json_.containsKey('projectIdOrNum')
            ? json_['projectIdOrNum'] as core.String
            : null,
      );