listFromJson static method
Implementation
static List<RoleMember> listFromJson(dynamic json, {bool emptyIsNull, bool growable,}) =>
json is List && json.isNotEmpty
? json.map(RoleMember.fromJson).toList(growable: true == growable)
: true == emptyIsNull ? null : <RoleMember>[];