GroupOwnerSetting.fromJson constructor

GroupOwnerSetting.fromJson(
  1. Map<String, dynamic> json
)

Implementation

factory GroupOwnerSetting.fromJson(Map<String, dynamic> json) {
  return GroupOwnerSetting(
    autoAddGroupOwner: json['AutoAddGroupOwner'] as bool?,
    groupOwner: json['GroupOwner'] as String?,
  );
}