LastModifiedInfo.fromJson constructor

LastModifiedInfo.fromJson(
  1. Map json_
)

Implementation

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