of static method

OwesMoneyList of({
  1. int? count,
  2. List<IOwesMoney>? data,
})

Implementation

static OwesMoneyList of({int? count, List<IOwesMoney>? data}) {
  final self = OwesMoneyList(<String, dynamic>{},
      mtype: OwesMoneyListRef, update: true);
  if (count != null) self.count = count;
  if (data != null) self.data = data;
  return self;
}