create static method

ChatLists create({
  1. bool schemeUtilsIsSetDefaultData = false,
  2. String special_type = "chatLists",
  3. String special_return_type = "chatLists",
  4. List<ChatList>? chat_lists,
})
override

Generate By AZKADEV | Azka Axelion Gibran Script Dont edit by hand or anything manual

Implementation

static ChatLists create({
  bool schemeUtilsIsSetDefaultData = false,
  String special_type = "chatLists",
  String special_return_type = "chatLists",
  List<ChatList>? chat_lists,
}) {
  // ChatLists chatLists = ChatLists({
  final Map chatLists_data_create_json = {
    "@type": special_type,
    "@return_type": special_return_type,
    "chat_lists": (chat_lists != null) ? chat_lists.toJson() : null,
  };

  chatLists_data_create_json.removeWhere((key, value) => value == null);

  if (schemeUtilsIsSetDefaultData) {
    defaultData.forEach((key, value) {
      if (chatLists_data_create_json.containsKey(key) == false) {
        chatLists_data_create_json[key] = value;
      }
    });
  }
  return ChatLists(chatLists_data_create_json);
}