MockBaseModel constructor

MockBaseModel({
  1. String uid = 'testUid',
  2. List<String> filePaths = const ['testImageUrl1', 'testImageUrl2'],
})

Implementation

MockBaseModel({
  this.uid = 'testUid',
  this.filePaths = const ['testImageUrl1', 'testImageUrl2'],
});