SpannerProfile.fromJson constructor

SpannerProfile.fromJson(
  1. Map json_
)

Implementation

SpannerProfile.fromJson(core.Map json_)
  : this(
      database: json_['database'] as core.String?,
      host: json_['host'] as core.String?,
    );