call method

MockBaseModel call({
  1. String? uid,
  2. List<String>? filePaths,
})

Implementation

MockBaseModel call({
  String? uid,
  List<String>? filePaths,
}) {
  return MockBaseModel(
    uid: uid ?? this.uid,
    filePaths: filePaths ?? this.filePaths,
  );
}