MetastoreServiceConfig.fromJson constructor

MetastoreServiceConfig.fromJson(
  1. Map json_
)

Implementation

MetastoreServiceConfig.fromJson(core.Map json_)
    : this(
        metastoreService: json_.containsKey('metastoreService')
            ? json_['metastoreService'] as core.String
            : null,
      );