update method

  1. @override
  2. @protected
Future<List<T>?> update([
  1. int? arg
])
override

这里标记为protected, 防止被外部引用, 应该使用refresh方法

Implementation

@override
@protected
Future<List<T>?> update([int? arg]) {
  return super.update(arg);
}