TimePartitioning.fromJson constructor

TimePartitioning.fromJson(
  1. Map json_
)

Implementation

TimePartitioning.fromJson(core.Map json_)
  : this(
      expirationMs: json_['expirationMs'] as core.String?,
      type: json_['type'] as core.String?,
    );