GitConfig.fromJson constructor

GitConfig.fromJson(
  1. Map json_
)

Implementation

GitConfig.fromJson(core.Map json_)
  : this(
      http: json_.containsKey('http')
          ? HttpConfig.fromJson(
              json_['http'] as core.Map<core.String, core.dynamic>,
            )
          : null,
    );