block_list property

BlockList get block_list

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

Implementation

BlockList get block_list {
  try {
    if (rawData["block_list"] is Map == false) {
      return BlockList({});
    }
    return BlockList(rawData["block_list"] as Map);
  } catch (e) {
    return BlockList({});
  }
}
set block_list (BlockList value)

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

Implementation

set block_list(BlockList value) {
  rawData["block_list"] = value.toJson();
}