borderStyle method

T borderStyle(
  1. String value
)

Set border style - accepts String ('solid', 'dashed', 'dotted', 'none', 'hidden')

Implementation

T borderStyle(String value) {
  return copyWith(flyStyle.copyWith(borderStyle: value));
}