MeshCertificates.fromJson constructor

MeshCertificates.fromJson(
  1. Map json_
)

Implementation

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