MessagingGrant.fromJson constructor

MessagingGrant.fromJson(
  1. Map<String, dynamic> j
)

Implementation

factory MessagingGrant.fromJson(Map<String, dynamic> j) =>
    MessagingGrant(broadcast: j['broadcast'] ?? true, list: j['list'] ?? true, send: j['send'] ?? true);