RemoteVsLocal constructor

const RemoteVsLocal({
  1. required String key,
  2. dynamic remoteValue,
  3. dynamic localValue,
  4. bool isOverridden = false,
  5. bool isRemoteOnly = false,
  6. bool isLocalOnly = false,
})

Implementation

const RemoteVsLocal({
  required this.key,
  this.remoteValue,
  this.localValue,
  this.isOverridden = false,
  this.isRemoteOnly = false,
  this.isLocalOnly = false,
});