GitConfig.fromJson constructor
GitConfig.fromJson(
- 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,
);