ViewerSourceCode constructor

const ViewerSourceCode({
  1. required String location,
  2. required String code,
})

Implementation

const factory ViewerSourceCode({
  /// Location of the source code.
  required String location,

  /// Formatted source code.
  required String code,
}) = _ViewerSourceCode;