PushFilter.fromJson constructor

PushFilter.fromJson(
  1. Map json_
)

Implementation

PushFilter.fromJson(core.Map json_)
    : this(
        branch: json_['branch'] as core.String?,
        invertRegex: json_['invertRegex'] as core.bool?,
        tag: json_['tag'] as core.String?,
      );