this package contain advance methods of List object

Features

1-get max/min value int,double in the list 2-deeply comparing between two lists

Getting started

first you need to import the package and then use these static methods findMax ... for find the max value findMin ... for find the min value listEqule ... to compare two lists listremover ... to remove the same elaments between two lists

Usage

void main(){
    Advancelist.findMax(list: [1, 2, 4, 20]);//20
  Advancelist.findMin(list: [2, 4, 5, 2, 1]);//1
  Advancelist.listEqule(first: [1, 2, [2]], second: [1, 2, [2]]);//true
  Advancelist.listremover(first: [1, 2, 4], second: [1, 2, 3]);//first => 4 , second =>3
}

Additional information

Good Luck

Libraries

advance_list
Support for doing something awesome.